home *** CD-ROM | disk | FTP | other *** search
- on ThisIsAMac
- return the machineType < 256
- end
-
- on MakePathFromHere SubFolder, fileName
- if ThisIsAMac() then
- set glue to ":"
- else
- set glue to "\"
- end if
- return the pathName & SubFolder & glue & fileName
- end
-
- on MakePathFromRoot SubFolder, fileName
- global RootPath
- if ThisIsAMac() then
- set glue to ":"
- else
- set glue to "\"
- end if
- return RootPath & SubFolder & glue & fileName
- end
-
- on SetHereAsRoot
- global RootPath
- set RootPath to the pathName
- end
-
- on ReturnToHere whichFrame
- global ReturnFrame, ReturnMovie
- set ReturnFrame to whichFrame
- set ReturnMovie to the pathName & the movieName
- end
-
- on ExperimentFile whichExperiment
- global RootPath
- return MakePathFromRoot("EXPRMNTS", whichExperiment)
- end
-